home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gxsample.h < prev    next >
C/C++ Source or Header  |  1997-04-20  |  3KB  |  72 lines

  1. /* Copyright (C) 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxsample.h */
  20. /* Sample lookup and expansion */
  21.  
  22. /*
  23.  * The following union implements the expansion of sample
  24.  * values from N bits to 8, and a possible linear transformation.
  25.  */
  26. typedef union sample_lookup_s {
  27.     bits32 lookup4x1to32[16]; /* 1 bit/sample, not spreading */
  28.     bits16 lookup2x2to16[16]; /* 2 bits/sample, not spreading */
  29.     byte lookup8[256];    /* 1 bit/sample, spreading [2] */
  30.                 /* 2 bits/sample, spreading [4] */
  31.                 /* 4 bits/sample [16] */
  32.                 /* 8 bits/sample [256] */
  33. } sample_lookup_t;
  34. /*
  35.  * Define identity and inverted expansion lookups for 1-bit input values.
  36.  * These can be cast to a const sample_lookup_t.
  37.  */
  38. extern const bits32 lookup4x1to32_identity[16];
  39. #define sample_lookup_1_identity\
  40.   ((const sample_lookup_t *)lookup4x1to32_identity)
  41. extern const bits32 lookup4x1to32_inverted[16];
  42. #define sample_lookup_1_inverted\
  43.   ((const sample_lookup_t *)lookup4x1to32_inverted)
  44.  
  45. /*
  46.  * Define procedures to unpack and shuffle image data samples.  The Unix C
  47.  * compiler can't handle typedefs for procedure (as opposed to
  48.  * pointer-to-procedure) types, so we have to do it with macros instead.
  49.  *
  50.  * The original data start at sample data_x relative to data.
  51.  * bptr points to the buffer normally used to deliver the unpacked data.
  52.  * The unpacked data are at sample *pdata_x relative to the return value.
  53.  *
  54.  * Note that this procedure may return either a pointer to the buffer, or
  55.  * a pointer to the original data.
  56.  */
  57. #define sample_unpack_proc(proc)\
  58.   const byte *proc(P7(byte *bptr, int *pdata_x, const byte *data, int data_x,\
  59.               uint dsize, const sample_lookup_t *ptab, int spread))
  60. /*
  61.  * Declare the 1-for-1 unpacking procedure.
  62.  */
  63. sample_unpack_proc(sample_unpack_copy);
  64. /*
  65.  * Declare unpacking procedures for 1, 2, 4, and 8 bits per pixel,
  66.  * with optional spreading of the result.
  67.  */
  68. sample_unpack_proc(sample_unpack_1);
  69. sample_unpack_proc(sample_unpack_2);
  70. sample_unpack_proc(sample_unpack_4);
  71. sample_unpack_proc(sample_unpack_8);
  72.